home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / comm / net / tf02.lha / TinyFugue / tf-lib / local-eg.tf < prev    next >
Text File  |  1995-08-12  |  1KB  |  43 lines

  1. ;;; $Id: local-eg.tf,v 35000.1 1995/04/09 21:43:53 hawkeye Exp $
  2.  
  3. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  4. ;;; TF local library
  5. ;;; This file is not required, but contains some examples of commands
  6. ;;; you might want to use in your version of %TFLIBDIR/local.tf.  Other
  7. ;;; commands can be added here as well.  Use of the -i option is
  8. ;;; recommended with any /def commands placed in this file.
  9. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  10.  
  11. ;;; Mark this file as already loaded, for /require.
  12. /~loaded local.tf
  13.  
  14. ;;; HELPFILE is defined during installation.  If you want to move the
  15. ;;; helpfile without re-installing, uncomment and edit the line below.
  16.  
  17. ; /def -i HELPFILE=/usr/local/lib/tf-lib/help
  18.  
  19. ;;; Mail location
  20. ;; If your system keeps incoming mail in the recipient's home, instead of
  21. ;; in a central spool directory, uncomment the lines below (and edit the
  22. ;; "/set MAIL" line if needed).
  23.  
  24. ; /eval \
  25. ;     /if ( MAIL !~ "" ) \
  26. ;         /set MAIL=%{HOME}/.mailbox %;\
  27. ;     /endif
  28.  
  29. ;;; file compression
  30. ;; COMPRESS_READ should contain a command that take a filename as an
  31. ;; argument, and prints its output on stdout.  The library is configured
  32. ;; to use '.Z' and 'zcat'.  To use a different program, uncomment the pair
  33. ;; used on your system, or add your own.
  34.  
  35. ; GNU compression
  36. ; /def -i COMPRESS_SUFFIX=.gz
  37. ; /def -i COMPRESS_READ=zcat
  38.  
  39. ; SysV compression
  40. ; /def -i COMPRESS_SUFFIX=.z
  41. ; /def -i COMPRESS_READ=pcat
  42.  
  43.